123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- .timeline {
- }
- /*----- TIMELINE ITEM -----*/
- .timelineItem {
- padding-left: 30px;
- position: relative;
- }
- /*----- TIMELINE INFO -----*/
- .timelineInfo {
- font-size: 12px;
- }
- /*----- TIMELINE MARKER -----*/
- .timelineMarker {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 15px;
- &:before {
- border-radius: 100%;
- content: "";
- display: block;
- height: 15px;
- position: absolute;
- top: 4px;
- left: 0;
- width: 15px;
- z-index: 2;
- }
- &:after {
- content: "";
- width: 1px;
- background: #ccd5db;
- position: absolute;
- z-index: 1;
- top: 10px;
- bottom: -10px;
- left: 7px;
- }
- .timelineItem:last-child &:after {
- content: none;
- }
- }
- /*----- TIMELINE CONTENT -----*/
- .timelineContent {
- padding-bottom: 20px;
- p:last-child {
- margin-bottom: 0;
- }
- }
- .weekbtn {
- border-radius: 0.2rem;
- background: #11de68;
- // @include customButton(linear-gradient(to bottom, #b856ef, #6948d5), #f5a3ff, 0.2rem);
- span {
- position: relative;
- z-index: 2;
- }
- }
- .tableBox {
- //
- border: 1px solid #46e3ff;
- }
- .td {
- color: #fff;
- }
- .even {
- position: relative;
- background: #2b363f;
- //border-radius: 0.1rem;
- &:after {
- //content: "";
- //position: absolute;
- //left: 0;
- //top: 0;
- //right: 0;
- //bottom: 0;
- //border: 1px solid #46e3ff;
- //box-shadow: 0 0 10px #35a1b4 inset;
- //border-radius: 0.1rem;
- //background: rgba(172, 89, 235, 0.25);
- }
- // border: 1px solid #46e3ff;
- // td:nth-child(1) {
- // border: 1px solid #46e3ff;
- // border-radius: 0.1rem 0 0 0.1rem;
- // }
- }
- .header {
- background-color: #1c6042;
- --primary-color: #fff;
- }
|